home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d12 / vol7n9.arc / RECORDER.DOC < prev    next >
Text File  |  1988-04-08  |  1KB  |  44 lines

  1. RECORDER
  2. Command
  3.  
  4. Tom Kihlken                     1988 No. 9 (Utilities)
  5.  
  6.  
  7. Purpose:    Keeps a log of the number of times each file is
  8. accessed over a period of time to show which files would benefit from
  9. being stored on a RAMdisk.
  10.  
  11. Format:    RECORDER [n] [/R]
  12.  
  13. Remarks:    RECORDER is a memory-resident utility that should
  14. normally be loaded by being included as a line in an AUTOEXEC.BAT
  15. file.  By default it will keep track of disk I/O activity (reads,
  16. writes, EXECs) for 200 filenames.  The optional n parameter can be
  17. entered at the time the utility is loaded to increase the number of
  18. filenames to 2,000.  Each additional filename requires 20 bytes of
  19. RAM.  
  20.  
  21.     The current log can be seen by entering RECORDER at the DOS
  22. prompt.  Entering RECORDER with the /R switch resets the table; this
  23. may be done at any time, and certainly if the error message "Table is
  24. saturated" is displayed.
  25.  
  26.     Redirection is supported so the results can be stored to a
  27. file.
  28.  
  29. Example:    At the end of a morning's use, for example, to store
  30. the results and reset the table simultaneously, enter
  31.  
  32.     RECORDER /R > FILES.LOG
  33.  
  34.     By default, RECORDER sorts by the numbers in the totals
  35. column.  The DOS SORT program can be used to sort by the values in
  36. other columns.   The read column begins with character 20, the write
  37. column with 27, and the EXEC column with 34.
  38.  
  39. Example:    To sort the table by the number of entries in the EXEC
  40. category, enter
  41.  
  42.     RECORDER | SORT /+34
  43.  
  44.